home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / bin / enlightenment-config < prev    next >
Text File  |  2006-01-09  |  1KB  |  66 lines

  1. #!/bin/sh
  2.  
  3. prefix=/usr
  4. exec_prefix=${prefix}
  5. exec_prefix_set=no
  6.  
  7. usage="\
  8. Usage: $0 [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--libs] [--cflags]"
  9.  
  10. if test $# -eq 0; then
  11.       echo "${usage}" 1>&2
  12.       exit 1
  13. fi
  14.  
  15. while test $# -gt 0; do
  16.   case "$1" in
  17.   -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  18.   *) optarg= ;;
  19.   esac
  20.  
  21.   case $1 in
  22.     --prefix=*)
  23.       prefix=$optarg
  24.       if test $exec_prefix_set = no ; then
  25.         exec_prefix=$optarg
  26.       fi
  27.       ;;
  28.     --prefix)
  29.       echo $prefix
  30.       ;;
  31.     --exec-prefix=*)
  32.       exec_prefix=$optarg
  33.       exec_prefix_set=yes
  34.       ;;
  35.     --exec-prefix)
  36.       echo $exec_prefix
  37.       ;;
  38.     --version)
  39.       echo 0.16.999.022
  40.       ;;
  41.     --cflags)
  42.       includes="-I${prefix}/include -I${prefix}/include/enlightenment"
  43.       echo $includes -DUSE_E_CONFIG_H      
  44.       ;;
  45.     --libs)
  46.       libdirs="-L/usr/lib -le"
  47.       echo $libdirs
  48.       ;;
  49.     --module-dir)
  50.       dir="/usr/lib/enlightenment/modules_extra"
  51.       echo $dir
  52.       ;;
  53.     --config-apps-dir)
  54.       dir="/usr/share/enlightenment/config-apps"
  55.       echo $dir
  56.       ;;
  57.     *)
  58.       echo "${usage}" 1>&2
  59.       exit 1
  60.       ;;
  61.   esac
  62.   shift
  63. done
  64.  
  65. exit 0
  66.